[dbo].[BAEOrderProductCrossSellLookupInsert]
SQLServer
>
iMIS1521GA
>
Stored Procedures
> dbo.BAEOrderProductCrossSellLookupInsert
Properties
Parameters
SQL Script
Uses
Properties
Property
Value
ANSI Nulls On
Quoted Identifier On
Parameters
Name
Data Type
Max Length (Bytes)
@OrderProductID
int
4
@OrderProductCrossSellID
int
4
SQL Script
create
procedure
[dbo]
.
[BAEOrderProductCrossSellLookupInsert]
@OrderProductID
as
int
,
@OrderProductCrossSellID
AS
int
AS
INSERT
INTO
OrderProductCrossSellLookup
(
OrderProductID
,
CrossSellOrderProductID
)
VALUES
(
@OrderProductID
,
@OrderProductCrossSellID
);
GO
Uses
[dbo].[OrderProductCrossSellLookup]
dbo